/* Generale */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #121212; /* Sfondo scuro */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #1f1f1f;
    color: white;
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombra per profondità */
}

.header-content {
    text-align: center;
    padding: 0 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #bbb;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff9800;
}

/* Sezioni */
section {
    width: 80%;
    max-width: 900px;
    margin: 20px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05); /* Background traslucido */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombra per effetto di profondità */
}

section h2 {
    color: #ff9800;
    font-size: 28px;
    margin-bottom: 20px;
}

section p, section ul {
    color: #ccc;
    font-size: 16px;
}

/* Il Team */
.team-members {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 10px 0;
    color: #ff9800;
}

.team-member p {
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombra per profondità */
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    background-color: #ff9800;
    border-radius: 5px;
    transition: background 0.3s;
}

footer a:hover {
    background-color: #e68900;
}
